home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga CD32 Gamer 15
/
CD32 Gamer - 1995 - Issue 15.iso
/
r3
/
floppy_install
< prev
next >
Wrap
Text File
|
1995-07-09
|
2KB
|
88 lines
; for those who like peeking at scripts before running them,
; this one should be quite safe.
; It can be aborted at any time, and always asks for confirmation.
echo ""
echo "This script installs the R3-Demo onto a floppy disk."
echo ""
echo "As a lot of small files need to be copied, I would NOT advise"
echo "running this script FROM floppy on a single-floppy-drive machine."
echo "One option would be to copy the R3 dir to RAM: before running."
echo ""
ask "Do you really want to install onto a floppy disk (y/n)?"
if warn
echo ""
ask "Do you have a blank formatted floppy available (y/n)?"
if warn
echo ""
ask "OK. Put it in DF0: and press return."
echo ""
install drive df0: check
if not warn
relabel df0: "R3_DEMO"
if warn
endcli
endif
else
endcli
endif
else
echo ""
ask "Would you like me to format a disk for you (y/n)?"
if warn
echo ""
sys:system/format drive df0: name "R3_DEMO"
if warn
endcli
endif
else
echo ""
echo "Well I need a disk. Go buy one."
endcli
endif
endif
echo ""
echo "Installing..."
install drive DF0:
if not warn
makedir R3_DEMO:R3
if not warn
echo ""
echo "Copying silly little files onto floppy..."
echo ""
copy all Floppy_Install_junk/#? R3_DEMO:
if not warn
echo ""
echo "Copying R3 directory..."
echo ""
copy /R3.info R3_DEMO:
copy all Demo.levels#? R3_DEMO:R3
if not warn
copy all gfx#? R3_DEMO:R3
if not warn
copy all snd#? R3_DEMO:R3
if not warn
copy all ships#? R3_DEMO:R3
if not warn
copy R#? R3_DEMO:R3
echo ""
echo "ALL DONE! Have fun."
endcli
endif
endif
endif
endif
endif
endif
endif
echo ""
echo "Oh bugger. Something went wrong."
else
echo ""
echo "Fine. Go click on some other icons, then."
endif